home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / util / libs / regex.lha / regex / SASCinclude / clib / regex_protos.h
Encoding:
C/C++ Source or Header  |  1999-04-23  |  346 b   |  14 lines

  1. #ifndef  REGEX_PROTOS_H
  2. #define  REGEX_PROTOS_H
  3.  
  4. #ifndef  LIBRARIES_REGEX_H
  5. #include <libraries/regex.h>
  6. #endif
  7.  
  8. int regcomp ( regex_t * , const char * , int );
  9. size_t regerror ( int , const regex_t * , char * , size_t );
  10. int regexec ( regex_t * , char * , size_t , regmatch_t * , int );
  11. void regfree ( regex_t * );
  12.  
  13. #endif     /* REGEX_PROTOS_H */
  14.